home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000175_gsherman@remove_this.m20.net_Tue May 22 16:41:35 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  56 lines

  1. Article: 12474 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!yellow.newsread.com!netaxs.com!newsread.com!POSTED.monger.newsread.com!not-for-mail
  3. From: "Glenn Sherman" <gsherman@remove_this.m20.net>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: zmodem problem
  6. Lines: 36
  7. X-Priority: 3
  8. X-MSMail-Priority: Normal
  9. X-Newsreader: Microsoft Outlook Express 5.00.2919.6700
  10. X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700
  11. Message-ID: <vOyO6.2574$gA.1009512@monger.newsread.com>
  12. Date: Tue, 22 May 2001 19:08:11 GMT
  13. NNTP-Posting-Host: 216.177.30.119
  14. X-Complaints-To: Abuse Role <abuse@metro2000.net>, We Care <abuse@newsread.com>
  15. X-Trace: monger.newsread.com 990558491 216.177.30.119 (Tue, 22 May 2001 15:08:11 EDT)
  16. NNTP-Posting-Date: Tue, 22 May 2001 15:08:11 EDT
  17. Organization: metro2000 (metro2000.net)
  18. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12474
  19.  
  20. I know this is a zmodem problem, but I thought someone might have dealt with
  21. this already.
  22.  
  23. I have a kermit script that dials up to send a file.
  24. The server only receives zmodem transfers.
  25.  
  26. --- part of script ---
  27. set modem type hayes-2400
  28. set line /dev/ser2
  29. set speed 19200
  30. set dial interval 30
  31. set dial retries 3
  32. set file type text
  33. set protocol zmodem {} {} {sz %s} {sz -ay %s} rz {rz -a}
  34.  
  35. --- snip --- (connect stuff)
  36.  
  37. send file1.txt
  38. sleep 2
  39. exit 0
  40. --------
  41. This is what I get when sending the file...
  42.  
  43. Begin Xfer file1.txtRetry 0: Awaiting pathname nak for file1.txt
  44.       0 ZMODEM     A serial connection might still be active on /dev/ser2.
  45. OK to exit? ok
  46.  
  47. I know what the active serial connection warning is, but
  48. Is the pathname nak local  or is that from the remote ?
  49. Is there a switch to ignore it?
  50.  
  51. -Glenn Sherman
  52.  
  53.  
  54.  
  55.  
  56.